File Structure :

BAGH-CHAL/
│
├── playbaghchal/
│   ├── __init__.py
│   ├── PlayGame.py
│   ├── button.py
│   ├── assets/
│   │   ├── tiger.png
│   │   ├── goat.png
│   │   ├── Quit.png
│   │   ├── Start.png
│   │   ├── Tiger_win.png
│   │   ├── Goat_win.png
│   │   ├── Play_Again.png
│   │   ├── forest.png
│   │   └── wood.png
│
├── setup.py
├── README.md
└── LICENSE
└── MANIFEST.in
└── .gitignore
└── requirements.txt


Inside button.py, there is Button Class
Inside PlayGame.py there is TigerGame class with run function to play the game.

This is setup.py "from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as f:
    long_description = f.read()

setup(
    name="PlayBaghChal",
    version="1.0.1",
    author="Bhishan Pangeni",
    author_email="bhishanpangeni2003@gmail.com",
    description="A Pygame implementation of the Bagh-Chal (Tiger and Goat) board game.",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/bhishanP/PlayBaghChal",
    packages=find_packages(),
    include_package_data=True,
    install_requires=[
        "pygame",
    ],
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires=">=3.6",
    entry_points={
        "console_scripts": [
            "playbaghchal=baghchal.PlayGame:run",
        ],
    },
    keywords="pygame baghchal tiger goat board game",
)" Suggest me some changes if required to follow standards. After I published this to PYPI, I installed using "pip install PlayBaghChal==1.0.1", but while running this code "from PlayBaghChal import TigerGame

game = TigerGame()
game.run()" I got modulenotfound error.
